type crypto/tls.ticketKey

11 uses

	crypto/tls (current package)
		common.go#L882: 	sessionTicketKeys []ticketKey
		common.go#L885: 	autoSessionTicketKeys []ticketKey
		common.go#L917: type ticketKey struct {
		common.go#L927: func (c *Config) ticketKeyFromBytes(b [32]byte) (key ticketKey) {
		common.go#L1018: 		c.sessionTicketKeys = []ticketKey{c.ticketKeyFromBytes(c.SessionTicketKey)}
		common.go#L1032: func (c *Config) ticketKeys(configForClient *Config) []ticketKey {
		common.go#L1075: 		valid := make([]ticketKey, 0, len(c.autoSessionTicketKeys)+1)
		common.go#L1106: 	newKeys := make([]ticketKey, len(keys))
		conn.go#L77: 	ticketKeys []ticketKey
		ticket.go#L325: func (c *Config) encryptTicket(state []byte, ticketKeys []ticketKey) ([]byte, error) {
		ticket.go#L370: func (c *Config) decryptTicket(encrypted []byte, ticketKeys []ticketKey) []byte {